Kali Linux 桌面美化及基本设置

作者 Marlous 日期 2019-04-30
Kali Linux 桌面美化及基本设置

补充:Kali 安装
最好不要以中文安装。

参考我的博文:《工作环境(Linux)初始化》

一 美化

美化

二 基本设置

  • 安装 google 输入法:

    1
    2
    3
    4
    5
    6
    7
    apt-get update

    apt-get install fcitx

    apt-get install fcitx-googlepinyin

    reboot
  • 安装深度截图工具:apt install deepin-screenshot

  • 安装 Slack、Xtreme Download Manager。

  • 调终端透明度。

  • 安装蓝牙相关:blueZ、blueman。

    1
    2
    3
    4
    5
    6
    7
    sudo service bluetooth start
    bluetoothctl
    power on
    agent on
    default-agent
    scan on
    pair [yourDeviceMAC] # 记得输入完授权码后回车。
  • 开启 SSH 服务:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    ssh localhost 查看是否安装了 SSH;

    没安装用 apt-get install openssh-server 安装;

    允许 root 用户远程登陆 vi /etc/ssh/sshd_config 加入一行 PermitRootLogin yes 并注释掉不用密码登陆;

    将 SSH 加入开机自启,打开 /etc/rc.local 文件,在 exit 0 语句前加入
    /etc/init.d/ssh start;

    开启服务与查看状态用 service ssh start、ps -s | grep ssh;

    使用命令 ip addr 查看 ip 地址,用 Termius 填入相关信息后登陆。